from small one page howto to huge articles all in one place
 

search text in:




Other .linuxhowtos.org sites: www.linuxhowtos.org
toolsntoys.linuxhowtos.org



Last additions:
How to make X listen on port 6000

How to make X listen on port 6000

words:

34

views:

74288

userrating:

average rating: 1.2 (8 votes) (1=very good 6=terrible)


May, 25th 2007:
April, 26th 2007:
Apr, 10th. 2007:
Druckversion . pdf icon
You are here: Misc

Gentoo udev Guide


1. What is udev?


The /dev Directory


When Linux-users talk about the hardware on their system in the vicinity of people who believe Linux is some sort of virus or brand of coffee, the use of "slash dev slash foo" will return a strange look for sure. But for the fortunate user (and that includes you) using /dev/hda1 is just a fast way of explaining that we are talking about the primary master IDE, first partition. Or aren't we?
We all know what a device file is. Some even know why device files have special numbers when we take a closer look at them when we issue ls -l in /dev. But what we always take for granted is that the primary master IDE disk is referred to as /dev/hda. You might not see it this way, but this is a flaw by design.
Think about hotpluggable devices like USB, IEEE1394, hot-swappable PCI, ... What is the first device? And for how long? What will the other devices be named when the first one disappears? How will that affect ongoing transactions? Wouldn't it be fun that a printing job is suddenly moved from your supernew laserprinter to your almost-dead matrix printer because your mom decided to pull the plug of the laserprinter which happened to be the first printer?


Enter udev. The goals of the udev project are both interesting and needed:
- Runs in userspace
- Dynamically creates/removes device files
- Provides consistent naming
- Provides a user-space API
To provide these features, udev is developed in three separate projects: namedev, libsysfs and, of course, udev.

namedev


Namedev allows you to define the device naming separately from the udev program. This allows for flexible naming policies and naming schemes developed by separate entities. This device naming subsystem provides a standard interface that udev can use.
Currently only a single naming scheme is provided by namedev; the one provided by LANANA, used by the majority of Linux systems currently and therefore very suitable for the majority of Linux users.
Namedev uses a 5-step procedure to find out the name of a given device. If the device name is found in one of the given steps, that name is used. The steps are:
- label or serial number
- bus device number
- bus topology
- statically given name
- kernel provided name

The label or serial number step checks if the device has a unique identifier. For instance USB devices have a unique USB serial number; SCSI devices have a unique UUID. If namedev finds a match between this unique number and a given configuration file, the name provided in the configuration file is used.
The bus device number step checks the device bus number. For non-hot-swappable environments this procedure is sufficient to identify a hardware device. For instance PCI bus numbers rarely change in the lifetime of a system. Again, if namedev finds a match between this position and a given configuration file, the name provided in that configuration file is used.
Likewise the bus topology is a rather static way of defining devices as long as the user doesn't switch devices. When the position of the device matches a given setting provided by the user, the accompanying name is used.
The fourth step, statically given name, is a simple string replacement. When the kernel name (the default name) matches a given replacement string, the substitute name will be used.
The final step (kernel provided name) is a catch-all: this one takes the default name provided by the kernel. In the majority of cases this is sufficient as it matches the device naming used on current Linux systems.

libsysfs


udev interacts with the kernel through the sysfs pseudo filesystem. The libsysfs project provides a common API to access the information given by the sysfs filesystem in a generic way. This allows for querying all kinds of hardware without having to make assumptions on the kind of hardware.

udev


Every time the kernel notices an update in the device structure, it calls the /sbin/hotplug program. Hotplug runs the applications linked in the /etc/hotplug.d/default directory where you will also find a symlink to the udev application. Hotplug directs the information given by the kernel to the udev application which performs the necessary actions on the /dev structure (creating or deleting device files).

2. Using udev on Gentoo


Requirements


udev is meant to be used in combination with a 2.6 kernel (like development-sources or gentoo-dev-sources). If you're using such a kernel then you just have to make sure that you have a recent sys-apps/baselayout version. That's all you need.
Code Listing 2.1: Installing udev
# emerge udev

udev will install hotplug-base as one of it's dependencies. You do not need to install hotplug unless you want your modules automatically loaded when you plug devices in. hotplug also handles the automated bringup of network devices and firmware downloading.
Code Listing 2.2: Installing optional hotplug scripts
# emerge hotplug

If you want modules loaded for devices that have been plugged in before you boot, use the coldplug package:
Code Listing 2.3: Installing the coldplug package
# emerge coldplug

Kernelwise, if you're using the default set by genkernel then you're all set. Otherwise be sure to activate the following options:
Code Listing 2.4: Required kernel options
General setup --->   
[*] Support for hot-pluggable devices

File systems --->
Pseudo filesystems --->
[*] /proc file system support
[*] Virtual memory file system support (former shm fs)

You can leave the /dev file system support (OBSOLETE) active if you wish but you have to make sure that "Automatically mount at boot" is disabled:
Code Listing 2.5: Don't automatically mount devfsd
File systems --->   
Pseudo Filesystems --->
[*] /dev file system support (OBSOLETE)
[ ] Automatically mount at boot

Configuration


If you want to use the udev-tweaks Gentoo added to make your life comfortable, then read no more. Gentoo will use udev but keep a static /dev so that you will never have any missing device nodes. The Gentoo init scripts won't run the devfsd daemon and will deactivate devfs when you boot up.

But if you are a die-hard and want to run a udev-only, no-tweaked system as is intended by the udev development (including the difficulties of missing device nodes because udev doesn't support them yet), by all means, read on :)

We'll deactivate the rules that save the device file nodes: edit the RC_DEVICE_TARBALL variable in /etc/conf.d/rc and set it to no:
Code Listing 2.6: /etc/conf.d/rc
RC_DEVICE_TARBALL="no"

If you have included devfs support in your kernel, you can deactivate it in the bootloader configuration: add gentoo=nodevfs as a kernel parameter. If you want to use devfs and deactivate udev, add gentoo=noudev as kernel parameter.

3. Known Issues


Missing device node files at boot


If you can't boot successfully because you get an error about /dev/null not found, or because the initial console is missing, the problem is that you lack some device files that must be available before /dev is mounted and handled by udev. This is common on Gentoo machines installed from old media.

If you run sys-apps/baselayout-1.8.12 or later, this problem is alleviated since the boot process should still manage to complete. However, to get rid of those annoying warnings, you should create the missing device nodes as described below.

To see which devices nodes are present before the /dev filesystem is mounted, run the following commands:
Code Listing 3.1: Listing device nodes available at boot
# mkdir test   
# mount --bind / test
# cd test/dev
# ls

The devices needed for a successful boot are /dev/null and /dev/console. If they didn't show up in the previous test, you have to create them manually. Issue the following commands in the test/dev/ directory:
Code Listing 3.2: Creating necessary device node files
# mknod -m 660 console c 5 1   
# mknod -m 660 null c 1 3

When you're finished, don't forget to unmount the test/ directory:
Code Listing 3.3: Unmounting the test/ directory
# cd ../..   
# umount test
# rmdir test

udev and nvidia


If you use the proprietary driver from nVidia and the X server fails to start on a udev-only system, then make sure you have:

the nvidia module listed in /etc/modules.autoload.d/kernel-2.6
a version of nvidia-kernel equal to or greater than media-video/nvidia-kernel-1.0.5336-r2
a version of baselayout equal to or greater than sys-apps/baselayout-1.8.12

LVM2 Names Disappear


When you use udev and LVM2 together, you might notice that your created volume groups and logical volumes have disappeared. Well, they haven't, but they are unfortunately named /dev/dm-# with # being 0, 1, ...

To fix this, edit /etc/udev/rules.d/50-udev.rules and uncomment the following line:
Code Listing 3.4: Uncomment this line from /etc/udev/rules.d/50-udev.rules
KERNEL="dm-[0-9]*",     PROGRAM="/sbin/devmap_name %M %m", NAME="%k", SYMLINK="%c"

No Consistent Naming between DevFS and udev


Even though our intention is to have a consistent naming scheme between both dynamical device management solutions, sometimes naming differences do occur. One reported clash is with a HP Smart Array 5i RAID controller (more precisely the cciss kernel module). With udev, the devices are named /dev/cciss/cXdYpZ with X, Y and Z regular numbers. With devfs, the devices are /dev/hostX/targetY/partZ or symlinked from /dev/cciss/cXdY.

If this is the case, don't forget to update your /etc/fstab and bootloader configuration files accordingly.

Other issues


If device nodes are not created when a module is loaded from /etc/modules.autoload.d/kernel-2.6 but they appear when you load the module manually with modprobe then you should try upgrading to sys-apps/baselayout-1.8.12 or later.

Support for the framebuffer devices (/dev/fb/*) comes with the kernel starting from version 2.6.6-rc2.

For kernels older than 2.6.4 you have to explicitly include support for the /dev/pts filesystem.
Code Listing 3.5: Enabling the /dev/pts filesystem
File systems --->   
Pseudo filesystems --->
[*] /dev/pts file system for Unix98 PTYs

4. Resources & Acknowledgements


The udev talk on the Linux Symposium (Ottawa, Ontario Canada - 2003) given by Greg Kroah-Hartman (IBM Corporation) provided a solid understanding on the udev application.

Decibel's UDEV Primer is an in-depth document about udev and Gentoo.

Writing udev rules by fellow Gentoo developer Daniel Drake is an excellent document to learn how to customize your udev installation.
rate this article:
current rating: average rating: 1.0 (7 votes) (1=very good 6=terrible)
Your rating:
Very good (1) Good (2) ok (3) average (4) bad (5) terrible (6)

back



Support us on Content Nation

New Packages

- as rdf newsfeed
- as rss newsfeed
- as Atom newsfeed
2025-04-19
b2 - 5.3.2
Ebuild name:

dev-build/b2-5.3.2

Description

A system for large project software construction, simple to use and powerful

Added to portage

2025-04-19

catch - 3.8.1
Ebuild name:

dev-cpp/catch-3.8.1

Description

Modern C++ header-only framework for unit-tests

Added to portage

2025-04-19

cryptokit - 1.20.1
Ebuild name:

dev-ml/cryptokit-1.20.1

Description

Cryptographic primitives library for Objective Caml

Added to portage

2025-04-19

egl-x11 - 1.0.1
Ebuild name:

gui-libs/egl-x11-1.0.1

Description

NVIDIA X11/XCB EGL external platform library

Added to portage

2025-04-19

framework_tool - 0.3.0
Ebuild name:

app-laptop/framework_tool-0.3.0

Description

Swiss army knife for Framework laptops

Added to portage

2025-04-19

gcc - 12.4.1_p20250417
Ebuild name:

sys-devel/gcc-12.4.1_p20250417

Description

The GNU Compiler Collection

Added to portage

2025-04-19

gcc - 15.0.1_pre20250418
Ebuild name:

sys-devel/gcc-15.0.1_pre20250418

Description

The GNU Compiler Collection

Added to portage

2025-04-19

hash-slinger - 3.3-r1
Ebuild name:

net-dns/hash-slinger-3.3-r1

Description

Various tools to generate DNS records like SSHFP, TLSA, OPENPGPKEY, IPS

Added to portage

2025-04-19

hash-slinger - 3.4
Ebuild name:

net-dns/hash-slinger-3.4

Description

Various tools to generate DNS records like SSHFP, TLSA, OPENPGPKEY, IPSECK

Added to portage

2025-04-19

igraph - 0.10.15
Ebuild name:

dev-libs/igraph-0.10.15

Description

Creating and manipulating undirected and directed graphs

Added to portage

2025-04-19

metee - 5.0.0
Ebuild name:

dev-libs/metee-5.0.0

Description

Cross-platform access library for Intel CSME HECI interface

Added to portage

2025-04-19

transformers - 4.50.3
Ebuild name:

sci-ml/transformers-4.50.3

Description

State-of-the-art Machine Learning for JAX, PyTorch and TensorFlow

Added to portage

2025-04-19

transformers - 4.51.3
Ebuild name:

sci-ml/transformers-4.51.3

Description

State-of-the-art Machine Learning for JAX, PyTorch and TensorFlow

Added to portage

2025-04-19

2025-04-18
accelerate - 1.6.0
Ebuild name:

sci-ml/accelerate-1.6.0

Description

Run your *raw* PyTorch training script on any kind of device

Added to portage

2025-04-18

akonadi - 25.04.0
Ebuild name:

kde-apps/akonadi-25.04.0

Description

Storage service for PIM data and libraries for PIM apps

Added to portage

2025-04-18

akonadi-calendar - 25.04.0
Ebuild name:

kde-apps/akonadi-calendar-25.04.0

Description

Library for akonadi calendar integration

Added to portage

2025-04-18

akonadi-calendar-tools-common - 25.04.0
Ebuild name:

kde-apps/akonadi-calendar-tools-common-25.04.0

Description

Added to portage

2025-04-18

akonadi-contacts - 25.04.0
Ebuild name:

kde-apps/akonadi-contacts-25.04.0

Description

Library for akonadi contact integration

Added to portage

2025-04-18

akonadi-import-wizard - 25.04.0
Ebuild name:

kde-apps/akonadi-import-wizard-25.04.0

Description

Assistant to import PIM data from other applications into Ak

Added to portage

2025-04-18

akonadi-mime - 25.04.0
Ebuild name:

kde-apps/akonadi-mime-25.04.0

Description

Library for akonadi mime types

Added to portage

2025-04-18

akonadi-search - 25.04.0
Ebuild name:

kde-apps/akonadi-search-25.04.0

Description

Libraries and daemons to implement searching in Akonadi

Added to portage

2025-04-18

akonadiconsole - 25.04.0
Ebuild name:

kde-apps/akonadiconsole-25.04.0

Description

Application for debugging Akonadi Resources

Added to portage

2025-04-18

akregator - 25.04.0
Ebuild name:

kde-apps/akregator-25.04.0

Description

News feed aggregator

Added to portage

2025-04-18

alligator - 25.04.0
Ebuild name:

net-news/alligator-25.04.0

Description

Convergent RSS/Atom feed reader for Plasma

Added to portage

2025-04-18

analitza - 25.04.0
Ebuild name:

kde-apps/analitza-25.04.0

Description

KDE library for mathematical features

Added to portage

2025-04-18

ark - 25.04.0
Ebuild name:

kde-apps/ark-25.04.0

Description

File archiver by KDE

Added to portage

2025-04-18

artikulate - 25.04.0
Ebuild name:

kde-apps/artikulate-25.04.0

Description

Language learning application that helps improving pronunciation skills

Added to portage

2025-04-18

audex - 25.04.0
Ebuild name:

media-sound/audex-25.04.0

Description

Tool for ripping compact discs

Added to portage

2025-04-18

audiocd-kio - 25.04.0
Ebuild name:

kde-apps/audiocd-kio-25.04.0

Description

KIO worker for accessing audio CDs

Added to portage

2025-04-18

awscli - 1.38.36
Ebuild name:

app-admin/awscli-1.38.36

Description

Universal Command Line Environment for AWS

Added to portage

2025-04-18

baloo-widgets - 25.04.0
Ebuild name:

kde-apps/baloo-widgets-25.04.0

Description

Widget library for baloo

Added to portage

2025-04-18

blinken - 25.04.0
Ebuild name:

kde-apps/blinken-25.04.0

Description

Memory enhancement game based on KDE Frameworks

Added to portage

2025-04-18

bomber - 25.04.0
Ebuild name:

kde-apps/bomber-25.04.0

Description

Single player arcade bombing game

Added to portage

2025-04-18

boto3 - 1.37.36
Ebuild name:

dev-python/boto3-1.37.36

Description

The AWS SDK for Python

Added to portage

2025-04-18

botocore - 1.37.36
Ebuild name:

dev-python/botocore-1.37.36

Description

Low-level, data-driven core of boto 3

Added to portage

2025-04-18

bovo - 25.04.0
Ebuild name:

kde-apps/bovo-25.04.0

Description

Five-in-a-row Board Game

Added to portage

2025-04-18

bundler - 2.6.8
Ebuild name:

dev-ruby/bundler-2.6.8

Description

An easy way to vendor gem dependencies

Added to portage

2025-04-18

calendarjanitor - 25.04.0
Ebuild name:

kde-apps/calendarjanitor-25.04.0

Description

Tool to scan calendar data for buggy instances

Added to portage

2025-04-18

calendarsupport - 25.04.0
Ebuild name:

kde-apps/calendarsupport-25.04.0

Description

Calendar support library

Added to portage

2025-04-18

calver - 2025.4.17
Ebuild name:

dev-python/calver-2025.4.17

Description

Setuptools extension for CalVer package versions

Added to portage

2025-04-18

cantor - 25.04.0
Ebuild name:

kde-apps/cantor-25.04.0

Description

Interface for doing mathematics and scientific computing

Added to portage

2025-04-18

cervisia - 25.04.0
Ebuild name:

kde-apps/cervisia-25.04.0

Description

CVS frontend by KDE

Added to portage

2025-04-18

closure-compiler-bin - 20250407
Ebuild name:

dev-lang/closure-compiler-bin-20250407

Description

JavaScript optimizing compiler

Added to portage

2025-04-18

colord-kde - 25.04.0
Ebuild name:

kde-misc/colord-kde-25.04.0

Description

Provides interfaces and session daemon to colord

Added to portage

2025-04-18

core_unix - 0.17.1
Ebuild name:

dev-ml/core_unix-0.17.1

Description

Unix-specific portions of Core

Added to portage

2025-04-18

crystal - 1.16.1
Ebuild name:

dev-lang/crystal-1.16.1

Description

The Crystal Programming Language

Added to portage

2025-04-18

cython - 3.1.0_beta1-r1
Ebuild name:

dev-python/cython-3.1.0_beta1-r1

Description

A Python to C compiler

Added to portage

2025-04-18

dolphin - 25.04.0
Ebuild name:

kde-apps/dolphin-25.04.0

Description

Plasma filemanager focusing on usability

Added to portage

2025-04-18

dolphin-plugins-common - 25.04.0
Ebuild name:

kde-apps/dolphin-plugins-common-25.04.0

Description

Added to portage

2025-04-18

dolphin-plugins-dropbox - 25.04.0
Ebuild name:

kde-apps/dolphin-plugins-dropbox-25.04.0

Description

Dolphin plugin for Dropbox service integration

Added to portage

2025-04-18

dolphin-plugins-git - 25.04.0
Ebuild name:

kde-apps/dolphin-plugins-git-25.04.0

Description

Dolphin plugin for Git integration

Added to portage

2025-04-18

dolphin-plugins-makefileactions - 25.04.0
Ebuild name:

dev-build/dolphin-plugins-makefileactions-25.04.0

Description

Dolphin plugin for Makefile targets integration

Added to portage

2025-04-18

dolphin-plugins-mercurial - 25.04.0
Ebuild name:

kde-apps/dolphin-plugins-mercurial-25.04.0

Description

Dolphin plugin for Mercurial integration

Added to portage

2025-04-18

dolphin-plugins-mountiso - 25.04.0
Ebuild name:

app-cdr/dolphin-plugins-mountiso-25.04.0

Description

Dolphin plugin for ISO loopback device mounting

Added to portage

2025-04-18

dolphin-plugins-subversion - 25.04.0
Ebuild name:

kde-apps/dolphin-plugins-subversion-25.04.0

Description

Dolphin plugin for Subversion integration

Added to portage

2025-04-18

dragon - 25.04.0
Ebuild name:

kde-apps/dragon-25.04.0

Description

Simple video player

Added to portage

2025-04-18

edid-decode - 0_pre20241119
Ebuild name:

sys-apps/edid-decode-0_pre20241119

Description

Decode EDID data in a human-readable format

Added to portage

2025-04-18

elasticsearch - 9.0.0
Ebuild name:

dev-python/elasticsearch-9.0.0

Description

Official Elasticsearch client library for Python

Added to portage

2025-04-18

elisa - 25.04.0
Ebuild name:

media-sound/elisa-25.04.0

Description

Simple music player by KDE

Added to portage

2025-04-18

elogind - 252.9-r3
Ebuild name:

sys-auth/elogind-252.9-r3

Description

The systemd project's logind, extracted to a standalone package

Added to portage

2025-04-18

eventviews - 25.04.0
Ebuild name:

kde-apps/eventviews-25.04.0

Description

Calendar viewer for KDE PIM

Added to portage

2025-04-18

falkon - 25.04.0
Ebuild name:

www-client/falkon-25.04.0

Description

Cross-platform web browser using QtWebEngine

Added to portage

2025-04-18

ffmpegthumbs - 25.04.0
Ebuild name:

kde-apps/ffmpegthumbs-25.04.0

Description

FFmpeg based thumbnail generator for video files

Added to portage

2025-04-18

filelight - 25.04.0
Ebuild name:

kde-apps/filelight-25.04.0

Description

Visualise disk usage with interactive map of concentric, segmented rings

Added to portage

2025-04-18

fixtures - 4.2.5
Ebuild name:

dev-python/fixtures-4.2.5

Description

Fixtures, reusable state for writing clean tests and more

Added to portage

2025-04-18

foot - 1.22.0
Ebuild name:

gui-apps/foot-1.22.0

Description

Fast, lightweight and minimalistic Wayland terminal emulator

Added to portage

2025-04-18

foot-terminfo - 1.22.0
Ebuild name:

gui-apps/foot-terminfo-1.22.0

Description

Terminfo for foot, a fast, lightweight and minimal Wayland terminal e

Added to portage

2025-04-18

francis - 25.04.0
Ebuild name:

app-misc/francis-25.04.0

Description

Productivity application using the well-known pomodoro technique

Added to portage

2025-04-18

frozenlist - 1.6.0
Ebuild name:

dev-python/frozenlist-1.6.0

Description

A list-like structure which implements collections.abc.MutableSequence

Added to portage

2025-04-18

gitlab-runner - 17.11.0
Ebuild name:

dev-util/gitlab-runner-17.11.0

Description

The official GitLab Runner, written in Go

Added to portage

2025-04-18

glycin-loaders - 1.2.1
Ebuild name:

media-libs/glycin-loaders-1.2.1

Description

Loaders for glycin clients (glycin crate or libglycin)

Added to portage

2025-04-18

granatier - 25.04.0
Ebuild name:

kde-apps/granatier-25.04.0

Description

KDE Bomberman game

Added to portage

2025-04-18

grantlee-editor - 25.04.0
Ebuild name:

kde-apps/grantlee-editor-25.04.0

Description

Utilities and tools to manage themes in KDE PIM applications

Added to portage

2025-04-18

grantleetheme - 25.04.0
Ebuild name:

kde-apps/grantleetheme-25.04.0

Description

Library for Grantlee plugins

Added to portage

2025-04-18

gwenview - 25.04.0
Ebuild name:

kde-apps/gwenview-25.04.0

Description

Image viewer by KDE

Added to portage

2025-04-18

hypothesis - 6.131.2
Ebuild name:

dev-python/hypothesis-6.131.2

Description

A library for property based testing

Added to portage

2025-04-18

incidenceeditor - 25.04.0
Ebuild name:

kde-apps/incidenceeditor-25.04.0

Description

Incidence editor for KOrganizer

Added to portage

2025-04-18

installkernel - 58
Ebuild name:

sys-kernel/installkernel-58

Description

Gentoo fork of installkernel script from debianutils

Added to portage

2025-04-18

intel-compute-runtime - 25.13.33276.17
Ebuild name:

dev-libs/intel-compute-runtime-25.13.33276.17

Description

Intel Graphics Compute Runtime for oneAPI Level Zero

Added to portage

2025-04-18

intel-graphics-compiler - 2.10.9
Ebuild name:

dev-util/intel-graphics-compiler-2.10.9

Description

LLVM-based OpenCL compiler for OpenCL targetting Intel Gen

Added to portage

2025-04-18

ipmicfg - 1.36.0.250225
Ebuild name:

sys-apps/ipmicfg-1.36.0.250225

Description

An in-band utility for configuring Supermicro IPMI devices

Added to portage

2025-04-18

isoimagewriter - 25.04.0
Ebuild name:

app-cdr/isoimagewriter-25.04.0

Description

Write hybrid ISO files onto a USB disk

Added to portage

2025-04-18

juk - 25.04.0
Ebuild name:

kde-apps/juk-25.04.0

Description

Jukebox and music manager by KDE

Added to portage

2025-04-18

k3b - 25.04.0
Ebuild name:

kde-apps/k3b-25.04.0

Description

Full-featured burning and ripping application based on KDE Frameworks

Added to portage

2025-04-18

kaccounts-integration - 25.04.0
Ebuild name:

kde-apps/kaccounts-integration-25.04.0

Description

Administer web accounts for the sites and services across th

Added to portage

2025-04-18

kaccounts-providers - 25.04.0
Ebuild name:

kde-apps/kaccounts-providers-25.04.0

Description

KDE accounts providers

Added to portage

2025-04-18

kaddressbook - 25.04.0
Ebuild name:

kde-apps/kaddressbook-25.04.0

Description

Address book application based on KDE Frameworks

Added to portage

2025-04-18

kajongg - 25.04.0
Ebuild name:

kde-apps/kajongg-25.04.0

Description

Classical Mah Jongg for four players

Added to portage

2025-04-18

kalarm - 25.04.0
Ebuild name:

kde-apps/kalarm-25.04.0

Description

Application to manage alarms and other timer based alerts for the desktop

Added to portage

2025-04-18

kalgebra - 25.04.0
Ebuild name:

kde-apps/kalgebra-25.04.0

Description

MathML-based 2D and 3D graph calculator by KDE

Added to portage

2025-04-18

kalzium - 25.04.0
Ebuild name:

kde-apps/kalzium-25.04.0

Description

Periodic table of the elements

Added to portage

2025-04-18

kamera - 25.04.0
Ebuild name:

kde-apps/kamera-25.04.0

Description

Plasma integration for gphoto2 cameras

Added to portage

2025-04-18

kamoso - 25.04.0
Ebuild name:

kde-apps/kamoso-25.04.0

Description

Application to take pictures and videos from your webcam by KDE

Added to portage

2025-04-18

kanagram - 25.04.0
Ebuild name:

kde-apps/kanagram-25.04.0

Description

Game based on anagrams of words

Added to portage

2025-04-18

kapman - 25.04.0
Ebuild name:

kde-apps/kapman-25.04.0

Description

Pac-Man clone by KDE

Added to portage

2025-04-18

kapptemplate - 25.04.0
Ebuild name:

kde-apps/kapptemplate-25.04.0

Description

Shell script to create the necessary framework to develop KDE applica

Added to portage

2025-04-18

kasts - 25.04.0
Ebuild name:

media-sound/kasts-25.04.0

Description

Convergent podcast application for desktop and mobile

Added to portage

2025-04-18

kate - 25.04.0
Ebuild name:

kde-apps/kate-25.04.0

Description

Multi-document editor with network transparency, Plasma integration and more

Added to portage

2025-04-18

kate-addons - 25.04.0
Ebuild name:

kde-apps/kate-addons-25.04.0

Description

Addons used by Kate

Added to portage

2025-04-18

kate-common - 25.04.0
Ebuild name:

kde-apps/kate-common-25.04.0

Description

Added to portage

2025-04-18

kate-lib - 25.04.0
Ebuild name:

kde-apps/kate-lib-25.04.0

Description

Shared library used by Kate/Kwrite and Kate-Addons

Added to portage

2025-04-18

katomic - 25.04.0
Ebuild name:

kde-apps/katomic-25.04.0

Description

KDE Atomic Entertainment Game

Added to portage

2025-04-18

kbackup - 25.04.0
Ebuild name:

kde-apps/kbackup-25.04.0

Description

Program that lets you back up any directories or files

Added to portage

2025-04-18

kblackbox - 25.04.0
Ebuild name:

kde-apps/kblackbox-25.04.0

Description

Game of hide and seek played on a grid of boxes

Added to portage

2025-04-18

kblocks - 25.04.0
Ebuild name:

kde-apps/kblocks-25.04.0

Description

Single-player Tetris-like KDE game

Added to portage

2025-04-18

kbounce - 25.04.0
Ebuild name:

kde-apps/kbounce-25.04.0

Description

KDE Bounce Ball Game

Added to portage

2025-04-18

kbreakout - 25.04.0
Ebuild name:

kde-apps/kbreakout-25.04.0

Description

Breakout-like game by KDE

Added to portage

2025-04-18

kbruch - 25.04.0
Ebuild name:

kde-apps/kbruch-25.04.0

Description

Educational application to learn calculating with fractions

Added to portage

2025-04-18

kcachegrind - 25.04.0
Ebuild name:

kde-apps/kcachegrind-25.04.0

Description

Frontend for Cachegrind by KDE

Added to portage

2025-04-18

kcalc - 25.04.0
Ebuild name:

kde-apps/kcalc-25.04.0

Description

KDE calculator

Added to portage

2025-04-18

kcalutils - 25.04.0
Ebuild name:

kde-apps/kcalutils-25.04.0

Description

Library providing utility functions for the handling of calendar data

Added to portage

2025-04-18

kcharselect - 25.04.0
Ebuild name:

kde-apps/kcharselect-25.04.0

Description

KDE character selection utility

Added to portage

2025-04-18

kclock - 25.04.0
Ebuild name:

kde-misc/kclock-25.04.0

Description

Convergent clock application for Plasma

Added to portage

2025-04-18

kcolorchooser - 25.04.0
Ebuild name:

kde-apps/kcolorchooser-25.04.0

Description

KDE color selector/editor

Added to portage

2025-04-18

kcron - 25.04.0
Ebuild name:

kde-apps/kcron-25.04.0

Description

KDE Task Scheduler

Added to portage

2025-04-18

kde-apps-meta - 25.04.0
Ebuild name:

kde-apps/kde-apps-meta-25.04.0

Description

Meta package for the KDE Release Service collection

Added to portage

2025-04-18

kde-dev-scripts - 25.04.0
Ebuild name:

kde-apps/kde-dev-scripts-25.04.0

Description

KDE Development Scripts

Added to portage

2025-04-18

kde-dev-utils - 25.04.0
Ebuild name:

kde-apps/kde-dev-utils-25.04.0

Description

KDE Development Utilities

Added to portage

2025-04-18

kdeaccessibility-meta - 25.04.0
Ebuild name:

kde-apps/kdeaccessibility-meta-25.04.0

Description

kdeaccessibility - merge this to pull in all kdeaccessiblity

Added to portage

2025-04-18

kdeadmin-meta - 25.04.0
Ebuild name:

kde-apps/kdeadmin-meta-25.04.0

Description

KDE administration tools - merge this to pull in all kdeadmin-derive

Added to portage

2025-04-18

kdebugsettings - 25.04.0
Ebuild name:

kde-apps/kdebugsettings-25.04.0

Description

Application to enable/disable qCDebug

Added to portage

2025-04-18

kdeconnect - 25.04.0
Ebuild name:

kde-misc/kdeconnect-25.04.0

Description

Adds communication between KDE Plasma and your smartphone

Added to portage

2025-04-18

kdecore-meta - 25.04.0
Ebuild name:

kde-apps/kdecore-meta-25.04.0

Description

kdecore - merge this to pull in the most basic applications

Added to portage

2025-04-18

kdeedu-data - 25.04.0
Ebuild name:

kde-apps/kdeedu-data-25.04.0

Description

Shared icons, artwork and data files for educational applications

Added to portage

2025-04-18

kdeedu-meta - 25.04.0
Ebuild name:

kde-apps/kdeedu-meta-25.04.0

Description

KDE educational apps - merge this to pull in all kdeedu-derived packag

Added to portage

2025-04-18

kdegames-meta - 25.04.0
Ebuild name:

kde-apps/kdegames-meta-25.04.0

Description

kdegames - merge this to pull in all kdegames-derived packages

Added to portage

2025-04-18

kdegraphics-meta - 25.04.0
Ebuild name:

kde-apps/kdegraphics-meta-25.04.0

Description

kdegraphics - merge this to pull in all kdegraphics-derived packa

Added to portage

2025-04-18

kdegraphics-mobipocket - 25.04.0
Ebuild name:

kde-apps/kdegraphics-mobipocket-25.04.0

Description

Library to support mobipocket ebooks

Added to portage

2025-04-18

kdemultimedia-meta - 25.04.0
Ebuild name:

kde-apps/kdemultimedia-meta-25.04.0

Description

kdemultimedia - merge this to pull in all kdemultimedia-derived

Added to portage

2025-04-18

kdenetwork-filesharing - 25.04.0
Ebuild name:

kde-apps/kdenetwork-filesharing-25.04.0

Description

Samba filesharing plugin for file properties

Added to portage

2025-04-18

kdenetwork-meta - 25.04.0
Ebuild name:

kde-apps/kdenetwork-meta-25.04.0

Description

kdenetwork - merge this to pull in all kdenetwork-derived packages

Added to portage

2025-04-18

kdenlive - 25.04.0
Ebuild name:

kde-apps/kdenlive-25.04.0

Description

Non-linear video editing suite by KDE

Added to portage

2025-04-18

kdepim-addons - 25.04.0
Ebuild name:

kde-apps/kdepim-addons-25.04.0

Description

Plugins for KDE Personal Information Management Suite

Added to portage

2025-04-18

kdepim-meta - 25.04.0
Ebuild name:

kde-apps/kdepim-meta-25.04.0

Description

KDE PIM - merge this to pull in all kdepim-derived packages

Added to portage

2025-04-18

kdepim-runtime - 25.04.0
Ebuild name:

kde-apps/kdepim-runtime-25.04.0

Description

Runtime plugin collection to extend the functionality of KDE PIM

Added to portage

2025-04-18

kdesdk-meta - 25.04.0
Ebuild name:

kde-apps/kdesdk-meta-25.04.0

Description

KDE SDK - merge this to pull in all kdesdk-derived packages

Added to portage

2025-04-18

kdesdk-thumbnailers - 25.04.0
Ebuild name:

kde-apps/kdesdk-thumbnailers-25.04.0

Description

Thumbnail generator for PO files

Added to portage

2025-04-18

kdeutils-meta - 25.04.0
Ebuild name:

kde-apps/kdeutils-meta-25.04.0

Description

kdeutils - merge this to pull in all kdeutils-derived packages

Added to portage

2025-04-18

kdevelop - 25.04.0
Ebuild name:

dev-util/kdevelop-25.04.0

Description

Integrated Development Environment, supporting KF6/Qt, C/C++ and much mor

Added to portage

2025-04-18

kdevelop-php - 25.04.0
Ebuild name:

dev-util/kdevelop-php-25.04.0

Description

PHP plugin for KDevelop

Added to portage

2025-04-18

kdevelop-python - 25.04.0
Ebuild name:

dev-util/kdevelop-python-25.04.0

Description

Python plugin for KDevelop

Added to portage

2025-04-18

kdf - 25.04.0
Ebuild name:

kde-apps/kdf-25.04.0

Description

KDE free disk space utility

Added to portage

2025-04-18

kdialog - 25.04.0
Ebuild name:

kde-apps/kdialog-25.04.0

Description

Can be used to show nice dialog boxes from shell scripts

Added to portage

2025-04-18

kdiamond - 25.04.0
Ebuild name:

kde-apps/kdiamond-25.04.0

Description

Single player three-in-a-row game

Added to portage

2025-04-18

keditbookmarks - 25.04.0
Ebuild name:

kde-apps/keditbookmarks-25.04.0

Description

Bookmarks editor based on KDE Frameworks

Added to portage

2025-04-18

keysmith - 25.04.0
Ebuild name:

app-crypt/keysmith-25.04.0

Description

OTP client for Plasma Mobile and Desktop

Added to portage

2025-04-18

kfind - 25.04.0
Ebuild name:

kde-apps/kfind-25.04.0

Description

File finder utility based on KDE Frameworks

Added to portage

2025-04-18

kfourinline - 25.04.0
Ebuild name:

kde-apps/kfourinline-25.04.0

Description

KDE four-in-a-row game

Added to portage

2025-04-18

kgeography - 25.04.0
Ebuild name:

kde-apps/kgeography-25.04.0

Description

Geography learning tool

Added to portage

2025-04-18

kget - 25.04.0
Ebuild name:

kde-apps/kget-25.04.0

Description

Advanced download manager by KDE

Added to portage

2025-04-18

kgoldrunner - 25.04.0
Ebuild name:

kde-apps/kgoldrunner-25.04.0

Description

Game of action and puzzle solving by KDE

Added to portage

2025-04-18

kgpg - 25.04.0
Ebuild name:

kde-apps/kgpg-25.04.0

Description

Frontend for GnuPG, a powerful encryption utility by KDE

Added to portage

2025-04-18

kgraphviewer - 25.04.0
Ebuild name:

media-gfx/kgraphviewer-25.04.0

Description

Graphviz dot graph file viewer

Added to portage

2025-04-18

khangman - 25.04.0
Ebuild name:

kde-apps/khangman-25.04.0

Description

Classical hangman game by KDE

Added to portage

2025-04-18

khelpcenter - 25.04.0
Ebuild name:

kde-apps/khelpcenter-25.04.0

Description

Application to read documentation for KDE Plasma, Applications, Utilit

Added to portage

2025-04-18

kidentitymanagement - 25.04.0
Ebuild name:

kde-apps/kidentitymanagement-25.04.0

Description

Library for managing identitites

Added to portage

2025-04-18

kig - 25.04.0
Ebuild name:

kde-apps/kig-25.04.0

Description

KDE Interactive Geometry tool

Added to portage

2025-04-18

kigo - 25.04.0
Ebuild name:

kde-apps/kigo-25.04.0

Description

Go game by KDE

Added to portage

2025-04-18

killbots - 25.04.0
Ebuild name:

kde-apps/killbots-25.04.0

Description

Kill the bots or they kill you

Added to portage

2025-04-18

kimagemapeditor - 25.04.0
Ebuild name:

kde-apps/kimagemapeditor-25.04.0

Description

Generator of HTML image maps

Added to portage

2025-04-18

kimap - 25.04.0
Ebuild name:

kde-apps/kimap-25.04.0

Description

Library for interacting with IMAP servers

Added to portage

2025-04-18

kio-admin - 25.04.0
Ebuild name:

app-admin/kio-admin-25.04.0

Description

Manage files as administrator using the admin KIO protocol

Added to portage

2025-04-18

kio-blender-thumbnailer - 25.04.0
Ebuild name:

media-gfx/kio-blender-thumbnailer-25.04.0

Description

KIO thumbnail generator for Blender files

Added to portage

2025-04-18

kio-extras - 25.04.0
Ebuild name:

kde-apps/kio-extras-25.04.0

Description

KIO plugins present a filesystem-like view of arbitrary data

Added to portage

2025-04-18

kio-gdrive - 25.04.0
Ebuild name:

kde-misc/kio-gdrive-25.04.0

Description

KIO worker for Google Drive service

Added to portage

2025-04-18

kio-gdrive-common - 25.04.0
Ebuild name:

kde-misc/kio-gdrive-common-25.04.0

Description

Added to portage

2025-04-18

kio-mobi-thumbnailer - 25.04.0
Ebuild name:

media-gfx/kio-mobi-thumbnailer-25.04.0

Description

KIO thumbnail generator for Mobipocket files

Added to portage

2025-04-18

kio-perldoc - 25.04.0
Ebuild name:

dev-util/kio-perldoc-25.04.0

Description

KIO worker interface to browse Perl documentation

Added to portage

2025-04-18

kio-ps-thumbnailer - 25.04.0
Ebuild name:

media-gfx/kio-ps-thumbnailer-25.04.0

Description

KIO thumbnail generator for DVI, EPS, PDF and PS files

Added to portage

2025-04-18

kio-raw-thumbnailer - 25.04.0
Ebuild name:

media-gfx/kio-raw-thumbnailer-25.04.0

Description

KIO thumbnail generator for RAW files

Added to portage

2025-04-18

kio-zeroconf - 25.04.0
Ebuild name:

net-misc/kio-zeroconf-25.04.0

Description

KIO worker to discover file systems by DNS-SD (DNS Service Discovery)

Added to portage

2025-04-18

kiriki - 25.04.0
Ebuild name:

kde-apps/kiriki-25.04.0

Description

An addictive and fun dice game

Added to portage

2025-04-18

kiten - 25.04.0
Ebuild name:

kde-apps/kiten-25.04.0

Description

KDE Japanese dictionary and reference

Added to portage

2025-04-18

kitinerary - 25.04.0
Ebuild name:

kde-apps/kitinerary-25.04.0

Description

Data Model and Extraction System for Travel Reservation information

Added to portage

2025-04-18

kjumpingcube - 25.04.0
Ebuild name:

kde-apps/kjumpingcube-25.04.0

Description

Tactical one or two player game

Added to portage

2025-04-18

kldap - 25.04.0
Ebuild name:

kde-apps/kldap-25.04.0

Description

Library for interacting with LDAP servers

Added to portage

2025-04-18

kleopatra - 25.04.0
Ebuild name:

kde-apps/kleopatra-25.04.0

Description

Certificate manager and GUI for OpenPGP and CMS cryptography

Added to portage

2025-04-18

klettres - 25.04.0
Ebuild name:

kde-apps/klettres-25.04.0

Description

Alphabet learning application

Added to portage

2025-04-18

klickety - 25.04.0
Ebuild name:

kde-apps/klickety-25.04.0

Description

An adaptation of the Clickomania game

Added to portage

2025-04-18

klines - 25.04.0
Ebuild name:

kde-apps/klines-25.04.0

Description

A little KDE game about balls and how to get rid of them

Added to portage

2025-04-18

kmag - 25.04.0
Ebuild name:

kde-apps/kmag-25.04.0

Description

KDE screen magnifier

Added to portage

2025-04-18

kmahjongg - 25.04.0
Ebuild name:

kde-apps/kmahjongg-25.04.0

Description

A tile matching game for one or two players

Added to portage

2025-04-18

kmail - 25.04.0
Ebuild name:

kde-apps/kmail-25.04.0

Description

Email client, supporting POP3 and IMAP mailboxes

Added to portage

2025-04-18

kmail-account-wizard - 25.04.0
Ebuild name:

kde-apps/kmail-account-wizard-25.04.0

Description

Assistant for KMail accounts configuration

Added to portage

2025-04-18

kmailtransport - 25.04.0
Ebuild name:

kde-apps/kmailtransport-25.04.0

Description

Mail transport service

Added to portage

2025-04-18

kmbox - 25.04.0
Ebuild name:

kde-apps/kmbox-25.04.0

Description

Library for accessing MBox format mail storages

Added to portage

2025-04-18

kmime - 25.04.0
Ebuild name:

kde-apps/kmime-25.04.0

Description

Libary for handling mail messages and newsgroup articles

Added to portage

2025-04-18

kmines - 25.04.0
Ebuild name:

kde-apps/kmines-25.04.0

Description

Classic mine sweeper game

Added to portage

2025-04-18

kmix - 25.04.0
Ebuild name:

kde-apps/kmix-25.04.0

Description

Volume control gui based on KDE Frameworks

Added to portage

2025-04-18

kmousetool - 25.04.0
Ebuild name:

kde-apps/kmousetool-25.04.0

Description

KDE program that clicks the mouse for you

Added to portage

2025-04-18

kmouth - 25.04.0
Ebuild name:

kde-apps/kmouth-25.04.0

Description

Text-to-speech synthesizer front end

Added to portage

2025-04-18

kmplot - 25.04.0
Ebuild name:

kde-apps/kmplot-25.04.0

Description

Mathematical function plotter

Added to portage

2025-04-18

knavalbattle - 25.04.0
Ebuild name:

kde-apps/knavalbattle-25.04.0

Description

Battleship clone by KDE

Added to portage

2025-04-18

knetwalk - 25.04.0
Ebuild name:

kde-apps/knetwalk-25.04.0

Description

KDE version of the popular NetWalk game for system administrators

Added to portage

2025-04-18

knights - 25.04.0
Ebuild name:

kde-apps/knights-25.04.0

Description

Simple chess board based on KDE Frameworks

Added to portage

2025-04-18

kolf - 25.04.0
Ebuild name:

kde-apps/kolf-25.04.0

Description

Minigolf game by KDE

Added to portage

2025-04-18

kollision - 25.04.0
Ebuild name:

kde-apps/kollision-25.04.0

Description

Simple ball dodging game

Added to portage

2025-04-18

kolourpaint - 25.04.0
Ebuild name:

kde-apps/kolourpaint-25.04.0

Description

Paint Program by KDE

Added to portage

2025-04-18

kompare - 25.04.0
Ebuild name:

kde-apps/kompare-25.04.0

Description

Graphical File Differences Tool

Added to portage

2025-04-18

konqueror - 25.04.0
Ebuild name:

kde-apps/konqueror-25.04.0

Description

Web browser and file manager based on KDE Frameworks

Added to portage

2025-04-18

konquest - 25.04.0
Ebuild name:

kde-apps/konquest-25.04.0

Description

Galactic Strategy KDE Game

Added to portage

2025-04-18

konsole - 25.04.0
Ebuild name:

kde-apps/konsole-25.04.0

Description

KDE's terminal emulator

Added to portage

2025-04-18

konsolekalendar - 25.04.0
Ebuild name:

kde-apps/konsolekalendar-25.04.0

Description

Command line interface to KDE calendars

Added to portage

2025-04-18

kontact - 25.04.0
Ebuild name:

kde-apps/kontact-25.04.0

Description

Container application to unify several major PIM applications within one

Added to portage

2025-04-18

kontactinterface - 25.04.0
Ebuild name:

kde-apps/kontactinterface-25.04.0

Description

Library for embedding KParts in a Kontact component

Added to portage

2025-04-18

kontrast - 25.04.0
Ebuild name:

app-accessibility/kontrast-25.04.0

Description

Tool to check contrast for colors to verify they are correctly a

Added to portage

2025-04-18

konversation - 25.04.0
Ebuild name:

net-irc/konversation-25.04.0

Description

User friendly IRC Client

Added to portage

2025-04-18

kopeninghours - 25.04.0
Ebuild name:

dev-libs/kopeninghours-25.04.0

Description

Library for parsing and evaluating OSM opening hours expressions

Added to portage

2025-04-18

korganizer - 25.04.0
Ebuild name:

kde-apps/korganizer-25.04.0

Description

Organizational assistant, providing calendars and other similar functio

Added to portage

2025-04-18

kosmindoormap - 25.04.0
Ebuild name:

dev-libs/kosmindoormap-25.04.0

Description

Data Model and Extraction System for Travel Reservation information

Added to portage

2025-04-18

kpat - 25.04.0
Ebuild name:

kde-apps/kpat-25.04.0

Description

KDE patience game

Added to portage

2025-04-18

kpimtextedit - 25.04.0
Ebuild name:

kde-apps/kpimtextedit-25.04.0

Description

Extended text editor for PIM applications

Added to portage

2025-04-18

kpkpass - 25.04.0
Ebuild name:

kde-apps/kpkpass-25.04.0

Description

Library to deal with Apple Wallet pass files

Added to portage

2025-04-18

kpmcore - 25.04.0
Ebuild name:

sys-libs/kpmcore-25.04.0

Description

Library for managing partitions

Added to portage

2025-04-18

kpublictransport - 25.04.0
Ebuild name:

dev-libs/kpublictransport-25.04.0

Description

Library for accessing public transport timetables and other infor

Added to portage

2025-04-18

kqtquickcharts - 25.04.0
Ebuild name:

kde-apps/kqtquickcharts-25.04.0

Description

Qt Quick plugin for beautiful and interactive charts

Added to portage

2025-04-18

krdc - 25.04.0
Ebuild name:

kde-apps/krdc-25.04.0

Description

Remote desktop connection (RDP and VNC) client

Added to portage

2025-04-18

krecorder - 25.04.0
Ebuild name:

media-sound/krecorder-25.04.0

Description

Convergent audio recording application for Plasma

Added to portage

2025-04-18

kreversi - 25.04.0
Ebuild name:

kde-apps/kreversi-25.04.0

Description

Board game by KDE

Added to portage

2025-04-18

krfb - 25.04.0
Ebuild name:

kde-apps/krfb-25.04.0

Description

VNC-compatible server to share Plasma desktops

Added to portage

2025-04-18

kruler - 25.04.0
Ebuild name:

kde-apps/kruler-25.04.0

Description

Screen ruler for Plasma

Added to portage

2025-04-18

ksanecore - 25.04.0
Ebuild name:

media-libs/ksanecore-25.04.0

Description

Qt-based interface for SANE library to control scanner hardware

Added to portage

2025-04-18

kshisen - 25.04.0
Ebuild name:

kde-apps/kshisen-25.04.0

Description

Solitaire-like game played using the standard set of Mahjong tiles

Added to portage

2025-04-18

ksirk - 25.04.0
Ebuild name:

kde-apps/ksirk-25.04.0

Description

Port of the board game Risk

Added to portage

2025-04-18

ksmtp - 25.04.0
Ebuild name:

kde-apps/ksmtp-25.04.0

Description

Job-based library to send email through an SMTP server

Added to portage

2025-04-18

ksnakeduel - 25.04.0
Ebuild name:

kde-apps/ksnakeduel-25.04.0

Description

KDE Tron game

Added to portage

2025-04-18

kspaceduel - 25.04.0
Ebuild name:

kde-apps/kspaceduel-25.04.0

Description

Space Game by KDE

Added to portage

2025-04-18

ksquares - 25.04.0
Ebuild name:

kde-apps/ksquares-25.04.0

Description

KDE clone of the game squares

Added to portage

2025-04-18

ksudoku - 25.04.0
Ebuild name:

kde-apps/ksudoku-25.04.0

Description

Logic-based symbol placement puzzle by KDE

Added to portage

2025-04-18

ksystemlog - 25.04.0
Ebuild name:

kde-apps/ksystemlog-25.04.0

Description

System log viewer by KDE

Added to portage

2025-04-18

kteatime - 25.04.0
Ebuild name:

kde-apps/kteatime-25.04.0

Description

KDE timer for making a fine cup of tea

Added to portage

2025-04-18

ktimer - 25.04.0
Ebuild name:

kde-apps/ktimer-25.04.0

Description

Little tool to execute programs after some time

Added to portage

2025-04-18

ktorrent - 25.04.0
Ebuild name:

net-p2p/ktorrent-25.04.0

Description

Powerful BitTorrent client based on KDE Frameworks

Added to portage

2025-04-18

ktouch - 25.04.0
Ebuild name:

kde-apps/ktouch-25.04.0

Description

Program that helps to learn and practice touch typing

Added to portage

2025-04-18

ktuberling - 25.04.0
Ebuild name:

kde-apps/ktuberling-25.04.0

Description

Potato game for kids by KDE

Added to portage

2025-04-18

kturtle - 25.04.0
Ebuild name:

kde-apps/kturtle-25.04.0

Description

Educational programming environment using the Logo programming language

Added to portage

2025-04-18

kubrick - 25.04.0
Ebuild name:

kde-apps/kubrick-25.04.0

Description

Game based on the

Added to portage

2025-04-18

kwalletmanager - 25.04.0
Ebuild name:

kde-apps/kwalletmanager-25.04.0

Description

Tool to manage the passwords on your system using KDE Wallet

Added to portage

2025-04-18

kwave - 25.04.0
Ebuild name:

kde-apps/kwave-25.04.0

Description

Sound editor built on KDE Frameworks that can edit many types of audio files

Added to portage

2025-04-18

kweather - 25.04.0
Ebuild name:

kde-misc/kweather-25.04.0

Description

Weather forecast application for Plasma with flat and dynamic/animated vi

Added to portage

2025-04-18

kweathercore - 25.04.0
Ebuild name:

dev-libs/kweathercore-25.04.0

Description

Library for retrieval of weather information including forecasts and

Added to portage

2025-04-18

kwordquiz - 25.04.0
Ebuild name:

kde-apps/kwordquiz-25.04.0

Description

Powerful flashcard and vocabulary learning program

Added to portage

2025-04-18

kwrite - 25.04.0
Ebuild name:

kde-apps/kwrite-25.04.0

Description

Simple text editor based on KDE Frameworks

Added to portage

2025-04-18

lcalc - 2.1.0-r1
Ebuild name:

sci-mathematics/lcalc-2.1.0-r1

Description

Command-line utility and library for L-function computations

Added to portage

2025-04-18

level-zero - 1.21.9
Ebuild name:

dev-libs/level-zero-1.21.9

Description

oneAPI Level Zero headers, loader and validation layer

Added to portage

2025-04-18

libgravatar - 25.04.0
Ebuild name:

kde-apps/libgravatar-25.04.0

Description

Library for gravatar integration

Added to portage

2025-04-18

libkcddb - 25.04.0
Ebuild name:

kde-apps/libkcddb-25.04.0

Description

KDE library for CDDB

Added to portage

2025-04-18

libkcddb-common - 25.04.0
Ebuild name:

kde-apps/libkcddb-common-25.04.0

Description

Added to portage

2025-04-18

libkcompactdisc - 25.04.0
Ebuild name:

kde-apps/libkcompactdisc-25.04.0

Description

Library for playing & ripping CDs

Added to portage

2025-04-18

libkdcraw - 25.04.0
Ebuild name:

kde-apps/libkdcraw-25.04.0

Description

Digital camera raw image library wrapper

Added to portage

2025-04-18

libkdegames - 25.04.0
Ebuild name:

kde-apps/libkdegames-25.04.0

Description

Base library common to many KDE games

Added to portage

2025-04-18

libkdepim - 25.04.0
Ebuild name:

kde-apps/libkdepim-25.04.0

Description

Common PIM libraries

Added to portage

2025-04-18

libkeduvocdocument - 25.04.0
Ebuild name:

kde-apps/libkeduvocdocument-25.04.0

Description

Library for reading/writing KVTML

Added to portage

2025-04-18

libkexiv2 - 25.04.0
Ebuild name:

kde-apps/libkexiv2-25.04.0

Description

Wrapper around exiv2 library

Added to portage

2025-04-18

libkgapi - 25.04.0
Ebuild name:

kde-apps/libkgapi-25.04.0

Description

Library for accessing Google calendar and contact resources

Added to portage

2025-04-18

libkleo - 25.04.0
Ebuild name:

kde-apps/libkleo-25.04.0

Description

Library for encryption handling

Added to portage

2025-04-18

libkmahjongg - 25.04.0
Ebuild name:

kde-apps/libkmahjongg-25.04.0

Description

Mahjongg library based on Qt/KDE Frameworks

Added to portage

2025-04-18

libkomparediff2 - 25.04.0
Ebuild name:

kde-apps/libkomparediff2-25.04.0

Description

Library to compare files and strings

Added to portage

2025-04-18

libksane - 25.04.0
Ebuild name:

kde-apps/libksane-25.04.0

Description

SANE Library interface based on KDE Frameworks

Added to portage

2025-04-18

libksane-common - 25.04.0
Ebuild name:

kde-apps/libksane-common-25.04.0

Description

Added to portage

2025-04-18

libksieve - 25.04.0
Ebuild name:

kde-apps/libksieve-25.04.0

Description

Common PIM libraries

Added to portage

2025-04-18

libktnef - 25.04.0
Ebuild name:

kde-apps/libktnef-25.04.0

Description

Library for handling TNEF data

Added to portage

2025-04-18

libktorrent - 25.04.0
Ebuild name:

net-libs/libktorrent-25.04.0

Description

BitTorrent library based on KDE Frameworks

Added to portage

2025-04-18

logswan - 2.1.15
Ebuild name:

www-misc/logswan-2.1.15

Description

Fast Web log analyzer using probabilistic data structures

Added to portage

2025-04-18

lokalize - 25.04.0
Ebuild name:

kde-apps/lokalize-25.04.0

Description

Localization tool for KDE software and other free and open source softwar

Added to portage

2025-04-18

lskat - 25.04.0
Ebuild name:

kde-apps/lskat-25.04.0

Description

Skat game by KDE

Added to portage

2025-04-18

luau - 0.669
Ebuild name:

dev-lang/luau-0.669

Description

Gradually typed embeddable scripting language derived from Lua

Added to portage

2025-04-18

mailcommon - 25.04.0
Ebuild name:

kde-apps/mailcommon-25.04.0

Description

Common mail library

Added to portage

2025-04-18

mailimporter - 25.04.0
Ebuild name:

kde-apps/mailimporter-25.04.0

Description

Library to import mail from various sources

Added to portage

2025-04-18

marble - 25.04.0
Ebuild name:

kde-apps/marble-25.04.0

Description

Virtual Globe and World Atlas to learn more about Earth

Added to portage

2025-04-18

markdownpart - 25.04.0
Ebuild name:

kde-misc/markdownpart-25.04.0

Description

Markdown viewer KParts plugin based on QTextDocument

Added to portage

2025-04-18

marksman - 2024.12.18
Ebuild name:

dev-util/marksman-2024.12.18

Description

LSP language server for editing Markdown files

Added to portage

2025-04-18

massif-visualizer - 25.04.0
Ebuild name:

dev-util/massif-visualizer-25.04.0

Description

Tool visualising massif data

Added to portage

2025-04-18

mbox-importer - 25.04.0
Ebuild name:

kde-apps/mbox-importer-25.04.0

Description

Import mbox email archives from various sources into Akonadi

Added to portage

2025-04-18

merkuro - 25.04.0
Ebuild name:

app-office/merkuro-25.04.0

Description

Calendar application using Akonadi

Added to portage

2025-04-18

meson - 1.8.0_rc1
Ebuild name:

dev-build/meson-1.8.0_rc1

Description

Open source build system

Added to portage

2025-04-18

messagelib - 25.04.0
Ebuild name:

kde-apps/messagelib-25.04.0

Description

Libraries for messaging functions

Added to portage

2025-04-18

mimetreeparser - 25.04.0
Ebuild name:

kde-apps/mimetreeparser-25.04.0

Description

Libraries for messaging functions

Added to portage

2025-04-18

minuet - 25.04.0
Ebuild name:

kde-apps/minuet-25.04.0

Description

Music Education software by KDE

Added to portage

2025-04-18

mkdocs-material - 9.6.12
Ebuild name:

dev-python/mkdocs-material-9.6.12

Description

A Material Design theme for MkDocs

Added to portage

2025-04-18

nagios-plugins - 2.4.12-r2
Ebuild name:

net-analyzer/nagios-plugins-2.4.12-r2

Description

Official plugins for Nagios

Added to portage

2025-04-18

nanobind - 2.7.0
Ebuild name:

dev-python/nanobind-2.7.0

Description

Tiny and efficient C++/Python bindings

Added to portage

2025-04-18

neochat - 25.04.0
Ebuild name:

net-im/neochat-25.04.0

Description

Client for Matrix, the decentralized communication protocol

Added to portage

2025-04-18

nvidia-drivers - 570.144
Ebuild name:

x11-drivers/nvidia-drivers-570.144

Description

NVIDIA Accelerated Graphics Driver

Added to portage

2025-04-18

okular - 25.04.0
Ebuild name:

kde-apps/okular-25.04.0

Description

Universal document viewer based on KDE Frameworks

Added to portage

2025-04-18

palapeli - 25.04.0
Ebuild name:

kde-apps/palapeli-25.04.0

Description

Jigsaw puzzle game by KDE

Added to portage

2025-04-18

parley - 25.04.0
Ebuild name:

kde-apps/parley-25.04.0

Description

Vocabulary trainer to help you memorize things

Added to portage

2025-04-18

partitionmanager - 25.04.0
Ebuild name:

sys-block/partitionmanager-25.04.0

Description

Utility for management of disks, partitions and file systems

Added to portage

2025-04-18

picmi - 25.04.0
Ebuild name:

kde-apps/picmi-25.04.0

Description

Nonogram logic game by KDE

Added to portage

2025-04-18

pim-data-exporter - 25.04.0
Ebuild name:

kde-apps/pim-data-exporter-25.04.0

Description

Assistant to backup and archive PIM data and configuration

Added to portage

2025-04-18

pim-sieve-editor - 25.04.0
Ebuild name:

kde-apps/pim-sieve-editor-25.04.0

Description

Assistant for editing IMAP Sieve filters

Added to portage

2025-04-18

pimcommon - 25.04.0
Ebuild name:

kde-apps/pimcommon-25.04.0

Description

Common PIM libraries

Added to portage

2025-04-18

poxml - 25.04.0
Ebuild name:

kde-apps/poxml-25.04.0

Description

KDE utility to translate DocBook XML files using gettext po files

Added to portage

2025-04-18

prismlauncher - 9.4
Ebuild name:

games-action/prismlauncher-9.4

Description

Custom, open source Minecraft launcher

Added to portage

2025-04-18

pydantic-core - 2.34.1
Ebuild name:

dev-python/pydantic-core-2.34.1

Description

Core validation logic for pydantic written in Rust

Added to portage

2025-04-18

qrca - 25.04.0
Ebuild name:

media-gfx/qrca-25.04.0

Description

Simple barcode scanner and QR code generator

Added to portage

2025-04-18

repology - 1.2.4
Ebuild name:

app-emacs/repology-1.2.4

Description

Repology API access via Emacs Lisp

Added to portage

2025-04-18

request - 0.3.3_p20220318
Ebuild name:

app-emacs/request-0.3.3_p20220318

Description

Compatible layer for URL request

Added to portage

2025-04-18

rescript-mode - 0.1.0_p20220613
Ebuild name:

app-emacs/rescript-mode-0.1.0_p20220613

Description

Emacs major mode for ReScript

Added to portage

2025-04-18

restclient - 0_p20220426
Ebuild name:

app-emacs/restclient-0_p20220426

Description

HTTP REST client tool for GNU Emacs

Added to portage

2025-04-18

revive - 2.25
Ebuild name:

app-emacs/revive-2.25

Description

Resume Emacs

Added to portage

2025-04-18

rfcview - 0.13
Ebuild name:

app-emacs/rfcview-0.13

Description

An Emacs mode that reformats IETF RFCs for display

Added to portage

2025-04-18

rg - 2.3.0
Ebuild name:

app-emacs/rg-2.3.0

Description

GNU Emacs search tool based on ripgrep

Added to portage

2025-04-18

rocs - 25.04.0
Ebuild name:

kde-apps/rocs-25.04.0

Description

Interface to work with Graph Theory

Added to portage

2025-04-18

rubygems - 3.6.8
Ebuild name:

dev-ruby/rubygems-3.6.8

Description

Centralized Ruby extension management system

Added to portage

2025-04-18

ruff - 0.11.6
Ebuild name:

dev-util/ruff-0.11.6

Description

An extremely fast Python linter, written in Rust

Added to portage

2025-04-18

s3transfer - 0.11.5
Ebuild name:

dev-python/s3transfer-0.11.5

Description

An Amazon S3 Transfer Manager

Added to portage

2025-04-18

signon-kwallet-extension - 25.04.0
Ebuild name:

kde-apps/signon-kwallet-extension-25.04.0

Description

KWallet extension for signond

Added to portage

2025-04-18

skanlite - 25.04.0
Ebuild name:

kde-misc/skanlite-25.04.0

Description

Simple image scanning application based on libksane and KDE Frameworks

Added to portage

2025-04-18

skanpage - 25.04.0
Ebuild name:

media-gfx/skanpage-25.04.0

Description

Multi-page scanning application supporting image and pdf files

Added to portage

2025-04-18

skladnik - 25.04.0
Ebuild name:

games-puzzle/skladnik-25.04.0

Description

The Japanese warehouse keeper sokoban game

Added to portage

2025-04-18

smcipmitool - 2.29.0.250214
Ebuild name:

sys-apps/smcipmitool-2.29.0.250214

Description

An out-of-band utility for interfacing with SuperBlade and IPMI

Added to portage

2025-04-18

sourcegit - 2025.13
Ebuild name:

dev-vcs/sourcegit-2025.13

Description

Open Source Git GUI client using .NET AvaloniaUI

Added to portage

2025-04-18

spirv-llvm-translator - 15.0.11
Ebuild name:

dev-util/spirv-llvm-translator-15.0.11

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2025-04-18

spirv-llvm-translator - 16.0.11
Ebuild name:

dev-util/spirv-llvm-translator-16.0.11

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2025-04-18

spirv-llvm-translator - 17.0.11
Ebuild name:

dev-util/spirv-llvm-translator-17.0.11

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2025-04-18

spirv-llvm-translator - 18.1.11
Ebuild name:

dev-util/spirv-llvm-translator-18.1.11

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2025-04-18

spirv-llvm-translator - 19.1.6
Ebuild name:

dev-util/spirv-llvm-translator-19.1.6

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2025-04-18

spirv-llvm-translator - 20.1.1
Ebuild name:

dev-util/spirv-llvm-translator-20.1.1

Description

Bi-directional translator between SPIR-V and LLVM IR

Added to portage

2025-04-18

sqlglot - 26.15.0
Ebuild name:

dev-python/sqlglot-26.15.0

Description

An easily customizable SQL parser and transpiler

Added to portage

2025-04-18

step - 25.04.0
Ebuild name:

kde-apps/step-25.04.0

Description

Interactive physics simulator

Added to portage

2025-04-18

svgpart - 25.04.0
Ebuild name:

kde-apps/svgpart-25.04.0

Description

Kpart for viewing SVGs

Added to portage

2025-04-18

sweeper - 25.04.0
Ebuild name:

kde-apps/sweeper-25.04.0

Description

Privacy settings widget to clean unwanted traces on the system

Added to portage

2025-04-18

thumbnailers - 25.04.0
Ebuild name:

kde-apps/thumbnailers-25.04.0

Description

Metapackage for KIO thumbnail generators

Added to portage

2025-04-18

tokodon - 25.04.0
Ebuild name:

net-im/tokodon-25.04.0

Description

Mastodon client for Plasma and Plasma Mobile

Added to portage

2025-04-18

tpm2-pytss - 2.3.0-r1
Ebuild name:

dev-python/tpm2-pytss-2.3.0-r1

Description

Python bindings for TSS

Added to portage

2025-04-18

umbrello - 25.04.0
Ebuild name:

kde-apps/umbrello-25.04.0

Description

KDE UML Modeller

Added to portage

2025-04-18

vivaldi - 7.3.3635.11
Ebuild name:

www-client/vivaldi-7.3.3635.11

Description

A browser for our friends

Added to portage

2025-04-18

vivaldi-snapshot - 7.4.3664.3
Ebuild name:

www-client/vivaldi-snapshot-7.4.3664.3

Description

A browser for our friends

Added to portage

2025-04-18

wireshark - 4.4.6-r1
Ebuild name:

net-analyzer/wireshark-4.4.6-r1

Description

Network protocol analyzer (sniffer)

Added to portage

2025-04-18

xlsxwriter - 3.2.3
Ebuild name:

dev-python/xlsxwriter-3.2.3

Description

Python module for creating Excel XLSX files

Added to portage

2025-04-18

yakuake - 25.04.0
Ebuild name:

kde-apps/yakuake-25.04.0

Description

Quake-style terminal emulator based on konsole

Added to portage

2025-04-18

zanshin - 25.04.0
Ebuild name:

kde-misc/zanshin-25.04.0

Description

Getting things done application by KDE

Added to portage

2025-04-18

zellij - 0.42.2
Ebuild name:

app-misc/zellij-0.42.2

Description

A terminal workspace with batteries included

Added to portage

2025-04-18

rdf newsfeed | rss newsfeed | Atom newsfeed
- Powered by LeopardCMS - Running on Gentoo -
Copyright 2004-2020 Sascha Nitsch Unternehmensberatung GmbH
Valid XHTML1.1 : Valid CSS : buttonmaker
- Level Triple-A Conformance to Web Content Accessibility Guidelines 1.0 -
- Copyright and legal notices -
Time to create this page: 50.1 ms